home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / LDB171.ARJ / EXAMP403.CPP < prev    next >
Text File  |  1992-05-12  |  358b  |  16 lines

  1.      // examp403.cpp - link with strbdr.obj and binder.obj
  2.  
  3.      #include <string.h>
  4.      #include "strbdr.hpp"
  5.  
  6.      main()
  7.      {
  8.        StrBdr sb(BDR_DDELETE | BDR_DNEW);
  9.  
  10.        sb.ins(strdup("line one"));
  11.        sb.insNew("line two");
  12.        sb.setCurNode();
  13.        while (sb.next())  cout << (char *)sb << "\n";
  14.        return 0;
  15.      }
  16.